home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / applications / databases / db2.5.lha / db2.5 / Examples / ARexxDemos / date.db < prev    next >
Encoding:
Text File  |  1994-09-18  |  190 b   |  12 lines

  1. /* Return today's date in the current field */
  2.  
  3. Options Results
  4.  
  5. ADDRESS COMMAND
  6. 'Date >t:datefile'
  7. ADDRESS
  8. OPEN('file','t:datefile')
  9. str = READLN('file')
  10. CLOSE('file')
  11. PUTFIELD WORD(str,2)
  12.